HTTP CONNECT

This command will connect to a new HTTP session so you can use the HTTP REQUEST DATA command to send requests and receive data back.

  Syntax
HTTP CONNECT URL String
  Parameters
URL String
String
The URL address to connect with

  Returns

This command does not return a value.

  Example Code
http connect "www.thegamecreators.com"
action$="action=list&"
serverid$="server_id=mygame"
return$=http request data("POST", "gamehost/index.php",action$+serverid$)
if return$<>""
print return$
else
print "no data returned"
endif
http disconnect
wait key
end
  See also

FTP Commands Menu
Index